aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/stats/[slug].tsx
blob: 3cc7f9993b45911fea5185ee0609e74e6d6f39e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import type { GetServerSideProps } from "next";
import "../../app/globals.css";
import CompactTable from "@/components/CompactTable/CompactTable";
import DataChart from "@/components/DataChart/DataChart";
import Divider from "@/components/Divider/Divider";
import Footer from "@/components/Footer/Footer";
import ChannelCard from "@/components/ChannelCard/ChannelCard";
import Head from "next/head";
import TitleBar from "../../components/TitleBar/TitleBar";

interface ChannelDataProp {
    channel_id: string;
    channel_name: string;
    profile_pic: string;
    subscribers: number;
    sub_org: string;
    video_count: number;
    view_count: number;
    next_milestone: string;
    days_until_next_milestone: string;
    next_milestone_date: string;
    diff_1d?: number;
    diff_7d?: number;
    diff_30d?: number;
}

interface GraphDataProp {
    labels: string[];
    datasets: number[];
}

interface CompactTableProps {
    dates: string[];
    milestones: string[];
}

export const getServerSideProps: GetServerSideProps = async (context) => {
    const { slug } = context.params || {};

    const chartData = await getGraphData(slug as string);
    const channelData = await getChannelData(slug as string);
    const sevenDayGraphData = await get7DGraphData(slug as string);
    const milestoneData = await getMilestoneData(slug as string);

    return {
        props: {
            chartData,
            channelData,
            slug,
            sevenDayGraphData,
            milestoneData,
        },
    };
};

function Page({
    chartData,
    channelData,
    sevenDayGraphData,
    slug,
    milestoneData,
}: {
    chartData: GraphDataProp;
    channelData: ChannelDataProp;
    sevenDayGraphData: GraphDataProp;
    slug: string;
    milestoneData: CompactTableProps;
}) {
    return (
        <>
            <Head>
                <title>{slug as string} - PhaseTracker</title>
                <meta
                    property="og:title"
                    content={`${slug as string} - PhaseTracker`}
                />
                <meta
                    name="description"
                    content={`Belonging to ${channelData.sub_org} with ${channelData.subscribers} subscribers`}
                />
                <meta
                    name="og:description"
                    content={`${channelData.sub_org} - ${channelData.subscribers}`}
                />
                <meta
                    property="og:image"
                    content={`${channelData.profile_pic}`}
                />
                <meta
                    name="viewport"
                    content="width=device-width, initial-scale=1.0"
                ></meta>
                <meta name="author" content="Pinapelz"></meta>
            </Head>
            <TitleBar
                title={slug as string}
                redirectUrl="/"
                showHomeButton
                backgroundColor="black"
            />
            <div className="flex justify-center px-12">
                <ChannelCard
                    channel_id={channelData.channel_id}
                    name={channelData.channel_name}
                    avatarUrl={channelData.profile_pic}
                    subscriberCount={channelData.subscribers}
                    videoCount={channelData.video_count}
                    viewCount={channelData.view_count}
                    suborg={channelData.sub_org}
                    nextMilestone={channelData.next_milestone}
                    nextMilestoneDays={channelData.days_until_next_milestone}
                    nextMilestoneDate={channelData.next_milestone_date}
                    diff_1d={channelData.diff_1d}
                    diff_7d={channelData.diff_7d}
                    diff_30d={channelData.diff_30d}
                />
            </div>
            <div className="hidden sm:block">
                <Divider
                    text="Individual Data"
                    description="Data before collection start date are not shown"
                />
                <div className="px-48 mb-10 mt-10">
                    <div className="mb-12">
                        <DataChart
                            overrideBGColor="black"
                            overrideBorderColor="black"
                            chartData={chartData}
                        />
                    </div>
                    <div className="mb-12">
                        <DataChart
                            chartData={sevenDayGraphData}
                            overrideBGColor="black"
                            overrideBorderColor="black"
                            graphTitle="7 Day Historical"
                        />
                    </div>
                </div>
                <Divider
                    text="Historical Milestones"
                    description="Approximations are shown for milestones before data collection started"
                />
                <div className="mb-12 mx-24">
                    <CompactTable
                        tableData={{
                            dates: milestoneData.dates,
                            milestones: milestoneData.milestones,
                        }}
                    />
                </div>
            </div>
            <Footer />
        </>
    );
}

async function getGraphData(slug: string) {
    const encodedSlug = encodeURIComponent(slug as string);
    const apiUrl = process.env.NEXT_PUBLIC_API_URL;
    const response = await fetch(apiUrl + `/api/subscribers/${encodedSlug}`, {
        headers: {
            "Cache-Control": "no-cache",
        },
        cache: "no-cache",
    });
    if (!response.ok) {
        console.log(response.statusText);
    }
    return response.json();
}

async function getChannelData(slug: string) {
    const encodedSlug = encodeURIComponent(slug as string);
    const apiUrl = process.env.NEXT_PUBLIC_API_URL;
    const response = await fetch(apiUrl + `/api/channel/${encodedSlug}`, {
        headers: {
            "Cache-Control": "no-cache",
        },
        cache: "no-cache",
    });
    if (!response.ok) {
        console.log(response.statusText);
    }
    return response.json();
}

async function get7DGraphData(slug: string) {
    const encodedSlug = encodeURIComponent(slug as string);
    const apiUrl = process.env.NEXT_PUBLIC_API_URL;
    const response = await fetch(
        apiUrl + `/api/subscribers/${encodedSlug}/7d`,
        {
            headers: {
                "Cache-Control": "no-cache",
            },
            cache: "no-cache",
        },
    );
    if (!response.ok) {
        console.log(response.statusText);
    }
    return response.json();
}

async function getMilestoneData(slug: string) {
    const encodedSlug = encodeURIComponent(slug as string);
    const apiUrl = process.env.NEXT_PUBLIC_API_URL;
    const response = await fetch(
        apiUrl + `/api/subscribers/${encodedSlug}/milestones`,
        {
            headers: {
                "Cache-Control": "no-cache",
            },
            cache: "no-cache",
        },
    );
    if (!response.ok) {
        console.log(response.statusText);
    }
    return response.json();
}

export default Page;
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage